home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1990-1992 Michael Davidson.
- * All rights reserved.
- *
- * Permission to use, copy, modify, and distribute this software
- * and its documentation for any purpose and without fee is hereby
- * granted, provided that the above copyright notice appear in all
- * copies and that both that copyright notice and this permission
- * notice appear in supporting documentation.
- *
- * This software is provided "as is" without express or implied warranty.
- */
-
- #ifndef IO_H
- #define IO_H
-
- byte_t inb(word_t);
- word_t inw(word_t);
- dword_t ind(word_t);
-
- void outb(word_t, byte_t);
- void outw(word_t, word_t);
- void outd(word_t, dword_t);
-
- #endif /* IO_H */
-